home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / yahoo_installed.nasl < prev    next >
Text File  |  2005-03-08  |  2KB  |  60 lines

  1. #
  2. # This script was written by Xue Yong Zhi <xueyong@udel.edu>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11432);
  10.  script_bugtraq_id(2299, 4162, 4163, 4164, 4173, 4837, 4838, 5579, 6121);
  11.  script_cve_id("CAN-2002-0320", "CAN-2002-0321", "CAN-2002-0031", "CVE-2002-0032", "CAN-2002-0322");  
  12.  
  13.  script_version("$Revision: 1.8 $");
  14.  
  15.  name["english"] = "Yahoo!Messenger is installed";
  16.  
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. Yahoo!Messenger - an instant messenging software, which may not be suitable 
  21. for a business environment - is installed on the remote host. If its use
  22. is not compatible with your corporate policy, you should de-install it.
  23.  
  24. Solution : Uninstall this software
  25. Risk factor : Low";
  26.  
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Determines if Yahoo!Messenger is installed";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2003 Xue Yong Zhi");
  38.  family["english"] = "Windows";
  39.  script_family(english:family["english"]);
  40.  
  41.  script_dependencies("netbios_name_get.nasl",
  42.               "smb_login.nasl","smb_registry_access.nasl");
  43.  script_require_keys("SMB/name", "SMB/login", "SMB/password",
  44.              "SMB/domain","SMB/transport");
  45.  
  46.  script_require_ports(139, 445);
  47.  exit(0);
  48. }
  49.  
  50.  
  51. include("smb_nt.inc");
  52.  
  53.  
  54. rootfile = registry_get_sz(key:"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Yahoo! Messenger", item:"DisplayName");
  55. if(rootfile)
  56. {
  57.  security_note(kb_smb_transport());
  58. }
  59.  
  60.